home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / serial / zyxel-1.5 / zyxel-1 / usr / ZyXEL / keys < prev    next >
Text File  |  1995-02-03  |  2KB  |  67 lines

  1. # 'DTMF key actions' for ZyXEL - entered as single keys in VOICE mode
  2. # keys not specified in this file will result in ERROR beep
  3.  
  4. # '0' = exit from voice mailbox
  5. 0:    exit
  6.  
  7. # '1' = play the directions for use
  8. 1:    say "hello this is a computer controlled answering machine."
  9.     say "control it using the keys on your telephone."
  10.     say "to get these instructions, press 1."
  11.     say "to listen to the message you recorded, press 2."
  12.     say "to record a new message, press 3."
  13.     say "to erase your message, press 4."
  14.     say "to send pager message, press 5."
  15.     say "to switch into data mode, press 6."
  16.     say "to switch into fax mode, press 7."
  17.     say "to retrieve a fax document, press 8."
  18.     say "to switch into expert mode, press 9."
  19.     say "press a key now"
  20.  
  21. # '2' = playback the entered message
  22. 2:    play message_was
  23.     play
  24.  
  25. # '3' = record a new message
  26. 3:    play enter_msg
  27.     record
  28.     logmesg "Re-recorded message"
  29.  
  30. # '4' = erase the message
  31. 4:    remove
  32.     say "message erased"
  33.     logmesg "Erased message (4)"
  34.  
  35. # '5' = send message on pager
  36.     say "sorry, no pager available"
  37. #5:    say "enter your number, terminate with #."
  38. #    readnumber
  39. #    say "pager will be called"
  40. #    pager NUMBER
  41.  
  42. # '6' = DATA mode
  43. 6:    say "data mode"
  44.     mode DATA
  45.  
  46. # '7' = FAX mode
  47. 7:    say "fax mode"
  48.     mode FAX
  49.  
  50. # '8' = FAXBACK mode
  51. 8:    say "faxback service."
  52.     say "please enter document number, terminate with #."
  53.     say "to get the instructions, enter 0."
  54.     say "to get the document index, enter 1."
  55.     readnumber
  56.     fax NUMBER
  57.  
  58. # '9' = 'expert' command mode
  59. 9:    say "expert mode"
  60.     command
  61.  
  62. # '*' (11) is ignored
  63. 11:
  64.  
  65. # '#' (12) is ignored
  66. 12:
  67.